home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2004 April
/
Gamestar_61_2004-04_dvdb.iso
/
DVDStar
/
Editace
/
hltp.exe
/
{app}
/
Source Code
/
MAP Viewer
/
ConfigLoader.h
< prev
next >
Wrap
C/C++ Source or Header
|
2003-08-05
|
342b
|
19 lines
#pragma once
using namespace System::IO;
#include "stdafx.h"
__gc class CConfigLoader
{
private:
CConfig *Config;
RichTextBox *txtConsole;
public:
CConfigLoader(CConfig *Config, RichTextBox *txtConsole);
bool LoadConfigFile(String *sFile);
private:
bool ProcessLine(String *sLine, String **sArg, String **sVal);
};